From f68954f42a26dfd42dab1731b22afc956bf164ba Mon Sep 17 00:00:00 2001 From: "kaf24@firebug.cl.cam.ac.uk" Date: Mon, 16 May 2005 19:59:29 +0000 Subject: [PATCH] bitkeeper revision 1.1422 (4288fba11spwpuVeAcBTXmV1qAve_Q) Fix 64-bit build of pygrub. From Jerone Young. Signed-off-by: Keir Fraser --- tools/pygrub/src/fsys/ext2/ext2module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/pygrub/src/fsys/ext2/ext2module.c b/tools/pygrub/src/fsys/ext2/ext2module.c index ed81c3a1dc..bef4bb6f9f 100644 --- a/tools/pygrub/src/fsys/ext2/ext2module.c +++ b/tools/pygrub/src/fsys/ext2/ext2module.c @@ -55,7 +55,7 @@ static PyObject * ext2_file_read (Ext2File *file, PyObject *args) { int err, size = 0; - size_t n, total = 0; + unsigned int n, total = 0; PyObject * buffer = NULL; if (file->file == NULL) { -- 2.30.2